Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
The 'events' npm package provides a way to implement the Observer pattern, which is a software design pattern that allows an object (known as a 'subject') to maintain a list of its dependents (known as 'observers') and automatically notify them of any state changes, usually by calling one of their methods. It is the same EventEmitters API as used by Node.js core.
EventEmitter creation
This code sample shows how to import the 'events' package and create a new instance of an EventEmitter.
const EventEmitter = require('events');
const myEmitter = new EventEmitter();
Event listening
This code sample demonstrates how to listen for an 'event' and execute a callback function when the event is emitted.
myEmitter.on('event', () => {
console.log('an event occurred!');
});
Event emitting
This code sample shows how to emit an 'event', which will trigger any associated event listeners.
myEmitter.emit('event');
Once listener
This code sample demonstrates how to set up a listener that will only be called once for the next time the event is emitted.
myEmitter.once('event', () => {
console.log('this event will be logged only once');
});
Removing listeners
This code sample shows how to remove a specific listener from an event.
const callback = () => console.log('event occurred');
myEmitter.on('event', callback);
// ...
myEmitter.removeListener('event', callback);
Mitt is a tiny functional event emitter / pubsub. It provides the same basic functionality as 'events' but with a smaller footprint and a more functional approach.
EventEmitter3 is a high performance EventEmitter. It has a similar API to 'events' but is optimized for performance and has no dependencies.
Wolfy87's EventEmitter is an implementation of the EventEmitter module found in Node.js but for the browser. It offers similar functionality to 'events' but is designed to work in a browser environment.
Node's event emitter for all engines.
npm install events
var EventEmitter = require('events').EventEmitter
See the node.js event emitter docs
1.1.1 (2016-06-22)
FAQs
Node's event emitter for all engines.
The npm package events receives a total of 33,796,644 weekly downloads. As such, events popularity was classified as popular.
We found that events demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.